home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010921-20020314 / 000405_mccantaj@immunex.com_Wed Mar 6 16:07:29 EST 2002.msg < prev    next >
Text File  |  2020-01-01  |  1KB  |  34 lines

  1. Article: 13254 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!panix!news-out.cwix.com!newsfeed.cwix.com!news-hog.berkeley.edu!ucberkeley!newsfeed.stanford.edu!postnews1.google.com!not-for-mail
  3. From: mccantaj@immunex.com (Jay Mccanta)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: silencing error messages
  6. Date: 6 Mar 2002 12:58:02 -0800
  7. Organization: http://groups.google.com/
  8. Lines: 16
  9. Message-ID: <c3782a8b.0203061258.725e38a2@posting.google.com>
  10. NNTP-Posting-Host: 198.178.217.1
  11. Content-Type: text/plain; charset=ISO-8859-1
  12. Content-Transfer-Encoding: 8bit
  13. X-Trace: posting.google.com 1015448282 29692 127.0.0.1 (6 Mar 2002 20:58:02 GMT)
  14. X-Complaints-To: groups-abuse@google.com
  15. NNTP-Posting-Date: 6 Mar 2002 20:58:02 GMT
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13254
  17.  
  18. I am trying to build a ckermit 8.0 script that will only output what I
  19. want it to.  I have:
  20.  
  21. set input echo off
  22. set take echo off
  23. set macro echo off
  24. set quiet on
  25.  
  26. Still when I do a
  27.  
  28. set host kdalj
  29.  
  30. I get DNS Lookup messages, etc.  I can reduce the messages by
  31. redirecting stderr to /dev/null.  However, not all the messages are
  32. eliminated.  Is there a way to suppress all those messages while
  33. allowing me to ECHO lines out?
  34.